AtCoder Beginners Selection PracticeA
(工事中)
解き方
解答例
下は上記の方法で解いたときの提出結果である。また、その提出の際に提出したソースコードをその下に転記する。
code: C
int main()
{
int a,b,c;
// 整数の入力
scanf("%d", &a);
// スペース区切りの整数の入力
scanf("%d %d",&b,&c);
// 文字列の入力
scanf("%s",s);
// 出力
printf("%d %s\n",a+b+c,s);
return 0;
}
私の提出一覧
table: submissions_atcoder_begginers_selection_PracticeA
提出のURL 提出時刻 結果 備考
感想